home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000444_news@columbia.edu_Fri Sep 29 15:38:43 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21146
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 29 Sep 1995 11:38:54 -0400
  3. Received: by apakabar.cc.columbia.edu id AA08449
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 29 Sep 1995 11:38:52 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: "Send" command problems
  9. Date: 29 Sep 1995 15:38:43 GMT
  10. Organization: Columbia University
  11. Lines: 34
  12. Message-Id: <44h3u3$87u@apakabar.cc.columbia.edu>
  13. References: <44etfg$89@legba.synergy.net>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <44etfg$89@legba.synergy.net>,
  18.  <feeney.chad@mhs-pfg1.attmail.com> wrote:
  19. : "Send" command problems with a file transfer b/w a PC and a UNIX
  20. : server...
  21. : Q: What I'm currenty experiencing with the "Send" command is that it will
  22. : not transfer a file to a capitialized UNIX subdirectory from a PC?  The
  23. : send process works with non-capitialized directories thou.  I have
  24. : experimented with the "Get" command from the capitalized UNIX
  25. : subdirectory to a PC and this process works correcty.  Any thoughts would
  26. : be welcomed!
  27. :       Examples:
  28. :  (1)  send c:\chad\chad.doc /Test/level1/chad.doc  -->  This process fails...
  29. Tell C-Kermit to "set file names literal" and "set receive pathnames on".
  30. (make sure you have C-Kermit 5A(190) or later)
  31.  
  32. :  (2)  send c:\chad\chad.doc /test/level1/chad.doc   -->  This process works!!
  33. :  (3)  get /Test/level1/chad.doc c:\chad\chad.doc    -->  This process works!!
  34. Good.
  35.  
  36. : Side Notes:
  37. : What I also found is that Kermit will not read capital UNIX
  38. : subdirectories and will try to recreate a that directory with the
  39. : specified name given...
  40. set filenames literal.
  41.  
  42. - Frank